home *** CD-ROM | disk | FTP | other *** search
/ Anime Robot / Anime Robot.iso / pc / DATA / START.dxr / 00023_Wait MOV 4.ls < prev    next >
Encoding:
Text File  |  1998-11-13  |  359 b   |  22 lines

  1. on exitFrame
  2.   global gInit
  3.   if the movieRate of sprite 4 = 1 then
  4.     go(the frame)
  5.   else
  6.     set the movieRate of sprite 4 to 0
  7.     set gInit to 1
  8.     updateStage()
  9.     updateStage()
  10.     go(the frame + 1)
  11.   end if
  12. end
  13.  
  14. on mouseUp
  15.   global gInit
  16.   set the movieRate of sprite 4 to 0
  17.   set gInit to 1
  18.   updateStage()
  19.   updateStage()
  20.   go(the frame + 1)
  21. end
  22.